Conditions | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /// <reference path="./config-types.d.ts"/> |
||
17 | |||
18 | function setOpts<e extends string, m extends string, b extends string>( |
||
19 | elementDelimiter: e, |
||
20 | modDelimiter: m, |
||
21 | blockModKey: b |
||
22 | ) { |
||
23 | const current = { |
||
24 | elementDelimiter, |
||
25 | modDelimiter, |
||
26 | blockModKey |
||
27 | } |
||
28 | |||
29 | //@ts-expect-error |
||
30 | options.current = current |
||
31 | } |
||
46 | } |